@CHARSET "UTF-8";

html {
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

body {
	line-height: 1.6;
	font-size: 14px;
	color: #333;
	font-family: -apple-system-font, "Helvetica Neue", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
	background: #fff;
	position: relative;
}

* {
	margin: 0;
	padding: 0;
}

h1, h2, h3, h4, h5, h6 {
	font-size: 100%;
	font-weight: normal;
}

table {border-collapse;
	border-spacing: 0;
}

ol, ul {
	list-style: none;
}

a {
	color: #333;
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}

/******************************* 字体样式 *******************************/
.text-left {
	text-align: left !important;
}

.text-center {
	text-align: center !important;
}

.text-right {
	text-align: right !important;
}

.text-xs {
	font-size: 12px;
}

.text-default {
	font-size: 14px;
}

.text-sm {
	font-size: 16px;
}

.text-lg {
	font-size: 18px;
}

.text-xl {
	font-size: 24px;
}

.text-xxl {
	font-size: 32px;
}

.text-xxxl {
	font-size: 42px;
}

.text-success {
	color: #09BB07 !important;
}

.text-primary {
	color: #10AEFF !important;
}

.text-warning {
	color: #FFBE00 !important;
}

.text-danger {
	color: #F76260 !important;
}

.text-gray {
	color: #bbb !important;
}

.text-blod {
	font-weight: 700;
}

/** 字体大写 **/
.text-upper {
	text-transform: uppercase;
}

/** 字体换行 **/
.text-break {
	word-wrap: break-word;
	word-break:break-all;
	-webkit-hyphens: auto;
	-ms-hyphens: auto;
	-moz-hyphens: auto;
	hyphens: auto;
}

.text-nowrap {
	white-space: nowrap;
}

/******************************* 标题样式 *******************************/
h1, h2, h3, h4, h5, h6 {
	margin: 10px 0;
	font-weight: 600;
	font-size: 100%;
}

h1 {
	font-size: 1.5em;
}

h2 {
	font-size: 1.25em;
}

/******************************* 清除浮动 *******************************/
.clear {
	clear: both;
	height: 0;
	font: 0/0 Arial;
	overflow: hidden;
	width: 0;
}

.clearfix {
	zoom: 1;
}

.clearfix:after {
	content: '\20';
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

/******************************* 间距 *******************************/
.mt15 {
	margin-top: 15px;
}

.mb10 {
	margin-bottom: 10px;
}

.ml5 {
	margin-left: 5px;
}

.ml10 {
	margin-left: 10px;
}

.mr5 {
	margin-right: 5px;
}

.mr10 {
	margin-right: 10px;
}

/******************************* 隐藏 *******************************/
.hide {
	display: none;
}